sbom vulnerability
Schemas
- yaml
- json
- markdown
$schema: https://json-schema.org/draft/2020-12/schema
$id: https://github.com/nqminds/CAHN/blob/main/packages/schemas/src/sbom_vulnerability.v.1.0.0.schema.yaml
title: sbom vulnerability
description: An SBOM (Software Bill Of Materials) vulnerability
type: object
properties:
sbom_id:
description: id of the sbom
type: string
vulnerability_score:
description: vulnerability score
type: number
created_at:
description: timestamp at which vulnerability score for the sbom was created in milliseconds
type: integer
required:
- sbom_id
- vulnerability_score
- created_at
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/nqminds/CAHN/blob/main/packages/schemas/src/sbom_vulnerability.v.1.0.0.schema.yaml",
"title": "sbom vulnerability",
"description": "An SBOM (Software Bill Of Materials) vulnerability",
"type": "object",
"properties": {
"sbom_id": {
"description": "id of the sbom",
"type": "string"
},
"vulnerability_score": {
"description": "vulnerability score",
"type": "number"
},
"created_at": {
"description": "timestamp at which vulnerability score for the sbom was created in milliseconds",
"type": "integer"
}
},
"required": [
"sbom_id",
"vulnerability_score",
"created_at"
]
}
sbom vulnerability
An SBOM (Software Bill Of Materials) vulnerability
The schema defines the following properties:
sbom_id
(string, required)
id of the sbom
vulnerability_score
(number, required)
vulnerability score
created_at
(integer, required)
timestamp at which vulnerability score for the sbom was created in milliseconds
Examples
- table
- json